body 
{
	font-family: Arial, Helvetica, sans-serif;
	background-color:#bbbbbb;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

canvas { 
    width: 100%;
    height: 100px;
    display: block;
}

.annotation { 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin-left: 25px;
    margin-top: 25px;
    padding: 1em;
    width: 300px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    border-radius: .5em;
    font-size: 12px;
    line-height: 1.2;
	opacity: 0;
    transition: opacity .5s;
    &::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -30px;
        width: 30px;
        height: 30px;
        border: 0px solid #fff;
        border-radius: 50%;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        background: rgba(0, 0, 0, 0.0);
    }
}
.resolutionScalingSlider{ 
	position: absolute; 
	margin-left: 15px;
    margin-top: 5px;
	z-index: 1; 
}

a { 
	color: black;
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.credits{ 
	position: absolute; 
	right: 30px;
	bottom: 10px;
	color: #FF;
	z-index: 1;
}


#number {
    position: absolute;
    z-index: -1;
}